home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / Hello / Sources / Binding.k next >
Encoding:
Text File  |  1996-04-25  |  1.1 KB  |  43 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Binding.k
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef BINDING_K
  11. #define BINDING_K
  12.  
  13. // Kind
  14. #define kODFHelloKind "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:ODFExamples:Kind:ODFHello"
  15.  
  16. // Class ID
  17. #define kODFHelloEditor "ODFExamples::ODFHello"
  18.  
  19. // Editor User String
  20. #define kODFHelloEditorUserString "ODFHello R1"
  21.  
  22. // Kind User String
  23. #define kODFHelloKindUserString "ODFHello"
  24.  
  25. // Hello OSType
  26. #define kODFHelloOSType 'DFHD'
  27.  
  28. // PlatformType
  29. #define kTEXTOSType             'TEXT'
  30. #define kDragKindUserString1 "Text file"
  31. #define kDragKindUserString2 "Text data"
  32.  
  33. // NMAP constants
  34. #define kKindCategoryMapId            128
  35. #define kEditorKindMapId            kKindCategoryMapId+1
  36. #define kEditorUserStringMapId        kEditorKindMapId+1
  37. #define kKindUserStringMapId        kEditorUserStringMapId+1
  38. #define kOldMacOSTypeMapId            kKindUserStringMapId+1
  39. #define kEditorPlatformKinds        kOldMacOSTypeMapId + 1
  40.  
  41. #endif
  42.  
  43.